home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / INDEX.C < prev    next >
Text File  |  1988-02-01  |  384b  |  8 lines

  1. /*
  2. ** return pointer to the first occurrence of c in s
  3. */
  4. index(s, c) char *s, c; {
  5.   while(*s) if(*s++ == c) return --s;
  6.   return 0;
  7.   }
  8.